home *** CD-ROM | disk | FTP | other *** search
/ Robotics & Artificial Int…3 (Professional Edition) / Robotics & Artificial Intelligence Tools 2003 (Professional Edition).iso / neural network tool and application / nsinstall.exe / data1.cab / CodeGen_Files / bbuild3.dbg < prev    next >
Encoding:
Text File  |  2002-03-08  |  4.2 KB  |  171 lines

  1. # ---------------------------------------------------------------------------
  2. !if !$d(BCB)
  3. BCB = $(MAKEDIR)\..
  4. !endif
  5.  
  6. # ---------------------------------------------------------------------------
  7. # IDE SECTION
  8. # ---------------------------------------------------------------------------
  9. # The following section of the project makefile is managed by the BCB IDE.
  10. # It is recommended to use the IDE to change any of the values in this
  11. # section.
  12. # ---------------------------------------------------------------------------
  13.  
  14. VERSION = BCB.03
  15. # ---------------------------------------------------------------------------
  16. PROJECT = ~.exe
  17. OBJFILES = ~.obj
  18. RESFILES =
  19. RESDEPEN = $(RESFILES)
  20. LIBFILES = NS.lib
  21. LIBRARIES =
  22. SPARELIBS = 
  23. PACKAGES = vclx35.bpi VCL35.bpi vcldb35.bpi vcldbx35.bpi bcbsmp35.bpi dclocx35.bpi \
  24.   Qrpt35.bpi
  25. DEFFILE =
  26. # ---------------------------------------------------------------------------
  27. PATHCPP = .;
  28. PATHASM = .;
  29. PATHPAS = .;
  30. PATHRC = .;
  31. DEBUGLIBPATH = $(BCB)\lib\debug
  32. RELEASELIBPATH = $(BCB)\lib\release
  33. # ---------------------------------------------------------------------------
  34. CFLAG1 = -Od -w -r- -k -y -v -vi- -c -tWC
  35. CFLAG2 = -D_NO_VCL -I$(BCB)\include
  36. CFLAG3 = -Tkh30000
  37. PFLAGS = -D_NO_VCL -U$(BCB)\lib;$(DEBUGLIBPATH) -I$(BCB)\include -$Y -$W -$O- -v -JPHN -M
  38. RFLAGS = -D_NO_VCL -i$(BCB)\include
  39. AFLAGS = /i$(BCB)\include /d_NO_VCL /mx /w2 /zd
  40. LFLAGS = -L$(BCB)\lib;$(DEBUGLIBPATH) -ap -Tpe -x -Gn -v
  41. IFLAGS =
  42. # ---------------------------------------------------------------------------
  43. ALLOBJ = c0x32.obj $(OBJFILES)
  44. ALLRES = $(RESFILES)
  45. ALLLIB = $(LIBFILES)  import32.lib cw32mt.lib
  46. # ---------------------------------------------------------------------------
  47. !ifdef IDEOPTIONS
  48.  
  49. [Version Info]
  50. IncludeVerInfo=0
  51. AutoIncBuild=0
  52. MajorVer=1
  53. MinorVer=0
  54. Release=0
  55. Build=0
  56. Debug=0
  57. PreRelease=0
  58. Special=0
  59. Private=0
  60. DLL=0
  61. Locale=1033
  62. CodePage=1252
  63.  
  64. [Version Info Keys]
  65. CompanyName=
  66. FileDescription=Executable (Console)
  67. FileVersion=1.0.0.0
  68. InternalName=
  69. LegalCopyright=
  70. LegalTrademarks=
  71. OriginalFilename=
  72. ProductName=
  73. ProductVersion=1.0.0.0
  74. Comments=
  75.  
  76. [HistoryLists\hlIncludePath]
  77. Count=1
  78. Item0=$(BCB)\include
  79.  
  80. [HistoryLists\hlLibraryPath]
  81. Count=2
  82. Item0=$(BCB)\lib
  83. Item1=$(BCB)\lib;`
  84.  
  85. [HistoryLists\hlConditionals]
  86. Count=1
  87. Item0=_NO_VCL
  88.  
  89. [Debugging]
  90. DebugSourceDirs=
  91.  
  92. [Parameters]
  93. RunParams=
  94. HostApplication=
  95.  
  96. !endif
  97.  
  98. # ---------------------------------------------------------------------------
  99. # MAKE SECTION
  100. # ---------------------------------------------------------------------------
  101. # This section of the project file is not used by the BCB IDE.  It is for
  102. # the benefit of building from the command-line using the MAKE utility.
  103. # ---------------------------------------------------------------------------
  104.  
  105. .autodepend
  106. # ---------------------------------------------------------------------------
  107. !if !$d(BCC32)
  108. BCC32 = bcc32
  109. !endif
  110.  
  111. !if !$d(DCC32)
  112. DCC32 = dcc32
  113. !endif
  114.  
  115. !if !$d(TASM32)
  116. TASM32 = tasm32
  117. !endif
  118.  
  119. !if !$d(LINKER)
  120. LINKER = ilink32
  121. !endif
  122.  
  123. !if !$d(BRCC32)
  124. BRCC32 = brcc32
  125. !endif
  126. # ---------------------------------------------------------------------------
  127. !if $d(PATHCPP)
  128. .PATH.CPP = $(PATHCPP)
  129. .PATH.C   = $(PATHCPP)
  130. !endif
  131.  
  132. !if $d(PATHPAS)
  133. .PATH.PAS = $(PATHPAS)
  134. !endif
  135.  
  136. !if $d(PATHASM)
  137. .PATH.ASM = $(PATHASM)
  138. !endif
  139.  
  140. !if $d(PATHRC)
  141. .PATH.RC  = $(PATHRC)
  142. !endif
  143. # ---------------------------------------------------------------------------
  144. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  145.     $(BCB)\BIN\$(LINKER) @&&!
  146.     $(LFLAGS) +
  147.     $(ALLOBJ), +
  148.     $(PROJECT),, +
  149.     $(ALLLIB), +
  150.     $(DEFFILE), +
  151.     $(ALLRES)
  152. !
  153. # ---------------------------------------------------------------------------
  154. .pas.hpp:
  155.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  156.  
  157. .pas.obj:
  158.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  159.  
  160. .cpp.obj:
  161.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  162.  
  163. .c.obj:
  164.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  165.  
  166. .asm.obj:
  167.     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  168.  
  169. .rc.res:
  170.     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  171. # ---------------------------------------------------------------------------